ee4df87bee453224f72406a10571ec0e9f09e4bb,src/tracks/TrackIntervalFeature.java,TrackIntervalFeature,startEndOfNextFeature,#GenomicCoords#,172

Before Change


			return currentGc;
		}
		GenomicCoords nextGc= new GenomicCoords(
				nextFeature.getChrom(), 
				nextFeature.getFrom(), 
				nextFeature.getTo(), 
				currentGc.getSamSeqDict(),
				currentGc.getFastaFile());

After Change


			return currentGc;
		}
		GenomicCoords nextGc= new GenomicCoords(
				Utils.coordinatesToString(nextFeature.getChrom(), nextFeature.getFrom(), nextFeature.getTo()), currentGc.getSamSeqDict(),
				currentGc.getFastaFile());
		return nextGc;		
	}